.services_module{
  display: flex;
  flex-direction: column;
  width: 98vw;
  gap: 30px;
  justify-content: center;
  margin: auto;
  padding: 15px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
}


.practice_area_header {
  
    font-family: "Montserrat";
    color: #f3ededd5; /* Dark gray text color */
    border-bottom: 2px solid #ccc; /* Gray border bottom */
    text-align: center; /* Center align text */
    padding: 6px;
    background-image: url(image/services_10/katwakemboy_practiceareas.jpeg);
    background-repeat: no-repeat;
    background-size:cover;
    border-radius: 5px;

}


.practice_area_header h3 {
    position: relative;
    font-size: 28px; /* Larger font size for heading */
    padding: 5px; /* Add spacing below heading */
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness:2.5px ;
}



.practice_area_header p {
    font-size: 16px; /* Font size for paragraphs */
    line-height: 1.5; /* Line height for readability */
}



.card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
  
  .card {
      
    background-color: #096d742f;
    box-shadow: 4.5px 3px 2px #096d7450;
    padding: 20px;
    border: 0px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 300px;
  }
  
  .card:hover {
    background-color: #096d744d;
    box-shadow: 6px 4px 2px #096d744d;
  }
  
  .card h2 {
    color: #333;
    margin-bottom: 10px;
  }
  
  .card p {
    color: #666;
    line-height: 1.6;
  }
  
  .card p:last-child {
    margin-bottom: 0;
  }




